home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Internet
/
Collection of Internet.iso
/
msdos
/
wattcp
/
unzipped
/
bootp
/
iscntrl.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1984-09-28
|
136 b
|
10 lines
/* return true if input character is a a control character
*/
iscntrl(c)
unsigned char c;
{
return (0177==c || c<=037);
}